/* Form Sections */
.form-section {
    border: 1px solid #eee;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 8px;
}

.form-section legend {
    font-weight: 600;
    color: #333;
    padding: 0 10px;
    width: auto;
}

/* Checkbox Groups */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
}

/* Form Note */
.form-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Select Dropdown */
select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 30px !important;
}


/* header section text css */

/* About Section Styling */
.about-section {
    padding: 80px 0;
    background: #f9fafc;
    position: relative;
    overflow: hidden;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-header {
    margin-bottom: 40px;
}

.section-tagline {
    display: block;
    font-size: 18px;
    color: #F9C113;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 36px;
    line-height: 1.3;
    color: #222;
    margin-bottom: 20px;
    font-weight: 700;
}

.highlight-text {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
}

.benefits-list {
    text-align: left;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.benefits-list h3 {
    font-size: 24px;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
}

.benefits-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F9C113;
    font-weight: bold;
}

.cta-content {
    margin-top: 40px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .highlight-text {
        font-size: 18px;
    }
    
    .benefits-list {
        padding: 20px;
    }
}